home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 44 / CDPowerplay44Disc2.iso / unreal / cool UT files / Jump_Boots.umod < prev    next >
Encoding:
INI File  |  1999-11-01  |  26.6 KB  |  197 lines

  1. [Setup]
  2. Product=Jump Boots Mutator
  3. Version=100
  4. Archive=Jump Boots Mutator.umod
  5. SrcPath=.
  6. MasterPath=..
  7. Requires=Unreal Tournament Demo322Requirement
  8. Group=SetupGroup
  9. Group=SystemGroup
  10. Group=umodIncludeFilesGroup
  11.  
  12. [Unreal Tournament Demo322Requirement]
  13. Product=Unreal Tournament Demo
  14. Version=322
  15.  
  16. [SetupGroup]
  17. Copy=(Src=System\Manifest.ini,Master=System\Manifest.ini,Size=547,Flags=3)
  18. Copy=(Src=System\Manifest.int,Master=System\Manifest.int,Size=588,Flags=3)
  19.  
  20. [SystemGroup]
  21. File=(Src=System\BoingBoing.u,Size=2526)
  22. File=(Src=System\BoingBoing.txt,Size=1610)
  23. File=(Src=System\BoingBoing.int,Size=113)
  24.  
  25. [umodIncludeFilesGroup]
  26. File=(Src=Help\modcentral.bmp,Size=21478)
  27.  
  28. [Setup]
  29. LocalProduct=Jump Boots Mutator
  30. ReadMe=System\BoingBoing.txt
  31. SetupWindowTitle=Mod Central
  32. AutoplayWindowTitle=Jump Boots Mutator Options
  33. ProductURL=http://www.planetunreal.com/modcentral/
  34. VersionURL=http://www.planetunreal.com/modcentral/
  35. Developer=ynohtnA
  36. DeveloperURL=http://www.planetunreal.com/modcentral/
  37. Logo=Help\modcentral.bmp
  38.  
  39. [Unreal Tournament Demo322Requirement]
  40. LocalProduct=Unreal Tournament Demo
  41. ProductURL=http://www.unreal.com/
  42. VersionURL=http://unreal.epicgames.com/versions.htm
  43. Developer=Epic Games, Inc.
  44. DeveloperURL=http://www.epicgames.com/
  45. ┴â*₧D$@j    ┤├σCOs╙┐eDEST$None
  46. ModifyPlayer
  47. BoingMutator
  48. ut_jumpboots BoingBoingCoreEngineCheckReplacementSystemObjectPropertyPackage    FunctionObject UnrealShareSound PlayerPawnPawn TextBufferClass ReturnValue
  49. BytePropertyFloatPropertyJumpZ AirControlOther
  50. JumpSound NextMutatorbSuperRelevant bCountJumpsBotPickupsBootJmpBotpack
  51. BoolPropertyActorMutatorÇéÇëù$Ω]Ya/!τpV discarded jumpboots in BoingMutator::CheckReplacement(...)(' ô
  52. ╙┼Rw*-É'òÇ?è½è?,{w.å*.åû ìñw.ç*.çÜ ì├wÅ*Å  ±G//=============================================================================
  53. // BoingMutator.
  54. //=============================================================================
  55. // A silly little mutator coded up by ynohtnA / Anthony Bowyer-Lowe.
  56. // Idea from Slim.
  57. // 25/9/1999   ynohtna@ynohtna.org
  58. //=============================================================================
  59.  
  60. class BoingMutator expands Mutator;
  61.  
  62. function ModifyPlayer(Pawn Other)
  63. {
  64.     if(Other != None)
  65.     {
  66.         Other.bCountJumps = True;
  67.         Other.AirControl = 1.0;
  68.         Other.JumpZ = Other.Default.JumpZ * 3;
  69.     }
  70.     if(PlayerPawn(Other) != None)
  71.     {
  72.         PlayerPawn(Other).JumpSound = sound'UnrealShare.Pickups.BootJmp';
  73.     }
  74.     if(Bot(Other) != None)
  75.     {
  76.         Bot(Other).JumpSound = sound'UnrealShare.Pickups.BootJmp';
  77.     }
  78.     
  79.  
  80.     if ( NextMutator != None )
  81.         NextMutator.ModifyPlayer(Other);
  82. }
  83.  
  84. // Ensure that no JumpBoots are spawned into the level.
  85. function bool CheckReplacement(Actor Other, out byte bSuperRelevant)
  86. {
  87.     if(Other.IsA('ut_jumpboots'))
  88.     {
  89.         log(self$ " discarded jumpboots in BoingMutator::CheckReplacement(...)");
  90.         return false;
  91.     }
  92.  
  93.     return true; 
  94. }
  95.  
  96. ÇÇä                  
  97. φ╗gä≥Ö╨╣ë╜É«léτ╪Γéτ╪Γéτ╪Γéτ╪Γå
  98. ÄsçxWⁿ╘ä≥Ö╨╣Ö
  99.     
  100.     #
  101.      √   ²           "■   
  102. ≥   ²    ⌡   
  103.     ⁿ   !■   ²   ²    ⁿ   ²   ■       ·    ⁿ   ²   !²        ∙   ê
  104. O    ê
  105. \    îùpi    îôSY Æ4Rl
  106. æ
  107. ~ÿ K ä$]W BoingBoing Mutator for UnrealTournament (Demo). (v1.0)
  108. ------------------------------------------------------
  109.  
  110. BoingBoing is a small mutator coded in UnrealScript
  111. that gives all players the effects of permanent
  112. AntiGrav boots: high jumps, full air-control, and
  113. reduced falling damage.
  114.  
  115. It came about from a suggestion made on the utuk
  116. mailing list by Slim when I was trawling for ideas.
  117. A bit of hacking with UnrealScript later, here we
  118. are.
  119.  
  120.  
  121. INSTALLATION
  122.  
  123. Simply unzip the files (BoingBoing.int and BoingBoing.u)
  124. into your TournamentDemo/System folder.
  125.  
  126. Then, when starting a game click on the mutators button
  127. and drag 'BoingBoing' into the window on the right.
  128.  
  129. Begin play, and bounce like mad!
  130.  
  131. (The mutator works best on Dm-Phobos and Dom-Sesmar.)
  132.  
  133.  
  134. NOTES
  135.  
  136. Possible improvements would involve making the body
  137. armour display show that the player is wearing the
  138. boots. My first iteration of this code did this
  139. (by spawning a pair of AntiGrav boots and giving
  140. them to each player), but I got weird bugs with
  141. the spawned boots respawning and appearing in the
  142. level. I couldn't be bothered to work out what I
  143. was doing wrong, so I changed the code so that it
  144. merely alters each players' jump settings (and
  145. jump sound).
  146.  
  147. The mutator also removes all AntiGrav boots from
  148. a level - no need for them.
  149.  
  150.  
  151. If you have any problems, comments, or beer that
  152. you'd like me to deal with, then please feel free
  153. to contact me:
  154.  
  155.     ynohtna@ynohtna.org
  156.  
  157.     http://www.amudarya.demon.co.uk/
  158.  
  159. Thanks, and I hope you enjoy the mutator.
  160.  
  161.     ynohtnA / Anthony Bowyer-Lowe.
  162.  
  163. //eof
  164. [Public]
  165. Object=(Name=BoingBoing.BoingMutator,Class=Class,MetaClass=Engine.Mutator,Description="BoingBoing")
  166.  
  167. BMµS6(T<░O├├   ≈≈≈∩∩∩ΘΦµ▀▀▀▄╒╙╠╠╠U├δ╚├┴╛╛╛╡╡╡¡¼¼d°,ááá«₧Üeß0ÖÖÖe╓18ö╣f╠3e╟3îîîf╛4»ïu{Ç¢h╢7f╡8ùàÇäääh¼9ñânií:|||£{jtttK:⌠hÆ<ôscìsaiç?êkdkkkìk[äkZ\Zéfff[giivB;!·éeXUSå}bS([ü{^QjhC7#α[[[5,╚sZPsYLjZGNNh0Pk/JwkRJ=Ej(╚QNN;L[kJI!;ücNBJJJ>okBJ-D[;EP"A^ Ñk:J0|VD;#@S"Æ*|1=I>>>k.L0g!;BI91"|%.NkQ+2=*S333d.>>0)W ,25"##A,(' fD('X#""!*J!"&
  168. > 1$ *
  169.         ~~~~~~~~~~{yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy|~~~~~~~~~~~~~~~~~td;3+++++************++++++++***************************************************************************************************************************************************************************************************************************************************************************************************+3Gdy~~~~~~~~~~~~~{Z+!!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%!!:d~~~~~~~~~~~{:%%*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++1111111111111111111111111111***Q~~~~~~~~~{5%+++++++++++++++++++++++++++++++++++++++++&&++++++++++1::;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5++++++++++++++++++++++++++++++++%Q~~~~~~~{;%++++++++++++++++++++++++++++++++++++++++3::3*++++++++:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5+++++++++++++++++++++++++++++++%Z~~~~~~d&&+++++++++++++++++++++++++++++++++++++++;@@@@;+++++++@G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G3+++++++++++1::@@@@;3+*++++++++%3y~~~~{@%+++++++++++++++++++++++++++++++++++++++;@@@@@@:+++++:G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@1+++++++++;@@@@@@@@@@1*+++++++++Z|~~~i**+++++++++++++++++++++*******+++++++++*5G@@@@@@@1*+++G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G:+++++++1@G@@@@@@@@@@@5*++++++++@y~~~d%&+++++++++++++&&+1::@;;;;<<;3+&&&++++++5G@@@@@@@1+++3G@@@@@@@@@@@@@@@@<<@@@@@@@@@@@@@@@@<<<<E@@@@@@@@@@@@@@@@@@@<<@@@@@<<@@@@@@@@@@@@@@<<<@@@<<@@@@@@@<<<@@@@@@@@@@@@@@@@@@@@<<<@@@@<<<<<@@@@@@@@@@@@@@@@@@@<<<E@@@@<<@@@@@@@@@@@@@@@@@@@@<<@@@@@@@@@@@@@@@@@@@<<<@@@@@@@@@@@@@<<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*++++++@@@@@@@@@@@@@@@5++++++++;y~~~Z!*++++++++++&&*<Zitttn`VV`inttid@+%%*++&5G@@@@@@G1*++3G@@@@@@<6J@@@@6<<J'J@@@@@@@E/6EE</EJ66E$J@@E6'J<$'E'EE@@@@@$'J$@J<@@@E<<J/EEEJ<6E@@E'<O'$EE$E@@@@@@E/@EEE$6EE<$/W/<<<<$EEE/O/$6J$EE<6@@'@J@$E@/EE6<J<<E@@@@@@@@@@@@@@@@@@@@@@@@@@G&+++++@@@@@@@@@@@@@@@@@3+++++++5t~~~Z!*++++++++%%*Qyyi8            
  170. -`yyZ1%%++1@@@@@@@@++++3G@@@@@@6/O@@@J6/<JO@@@@@@@6666E<$JO/6EO@E<66$J6/$J$EE@@@@' 6'$/J@@@@O$'6/<O'JJJO6/E@E$$//6@6'EEE@@@@@@E'EEE'/JW/'/]'<<<<EEE'W6/ /OJJ6/EE$EO'/'<<$EE/6W$//<E@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++3@@@@@@@@@@@@@@@@G@+++++++5t~~~d%&+++++++!&Z~{)    
  171. CLLUUUUH" 
  172. "t~d+!**:GGG@@@1++++1G@@@@@@6/J<<E<JWW//J$O@@@@@@EWJOOJ<'EJ66EO@OWWWWW@]]]$E$EE@@@@WW]' 6W<@@@@E/]EW//O'JJEJ<6EE<']WWWJ'<]]<EE$E@@@@@@E'@O</OO</W$JJ6']/<<<<EEE/O$]]J/OEJ</@E'J/<]WWWE<'EE/<WOO@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++;@@@@@@@@@@@@@@@@@G3++++++;y~~~d&&++++++5~~")\sspb__XXX_psR)|~G&+5@@@@3*++++3G@@@@@@66]OOO'J@E</J$J<@@@@@@W<<OJ@'EO66EJ@J$$$/J''/'E$EE@@@@]W$/O<@@@J6@J<E</O'EEEJ<6@@6$$$$<<$/'EEE@@@@@@E'@O/6EE<$W$@@6']'6<<<@EE/W///OEJ6/@E$J//E<'EE/<WE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++@@@@@@@@@@@@@@@@@@G5++++++@y~~~i+&++++&!Z~C"heeeTXXXFPIIIIIITM-C8)~i%%+++++++++++3G@@@@@@6$6/'@/O@E</J']EE@@@@@O@@JJ</JE66E$]EW$EE6'E$EE@@@@/<'@$W<@@@J6<E<E</O'W@@J<@WJ<$'W@'@EE@@@@@@E'@O66E<<$W$@@6']'JJJ<$O<J/W@//O$OE<<<<'J/6E/E<66O<<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++1@@@@@@@@@@@@@@@@@@G:++++++G{~~~y:&++++d~hpTTTTXXXXIIFPFFFFF?-"Ic&    |t!&++++++++++3G@@@@@@6'J 6]]6J6O@@@@@@O@@JJ@W]66E6EO'O]]E@J]]O$J$EE@@@@@' ]$O@@@@E<<E<E</O'<]]J<@J@]]O/O<O]]'EEE@@@@@@E'@J@W]'<W$@@6']6EE<@]E/W<J]]<6OJ]@W]O</]]6<EO]/<]]]E<@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++1@@@@@@@@@@@@@@@@@@G:++++++Z|~~~|Q&*++*tthjTTPPPPPPPPPPFIIFFFP?)"4IIcZ{+&+++++++++1G@@@@@@6/J<<<E''@J@@@@@O@@JJ<@@E6J<<E$EE@@@@6@'<<@@@@@E<<E<E</O'/J<6@JJ$'O<E@@@@@@E'EEE6$WJ@@6']'<$O@/@E/JJ6'W<W/<E@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++@@@@@@@@@@@@@@@@@@G5++++++d~~~~~Z****t`zTSSTTTTTPPPPPPPPIFFII4IF4FkC|+&++++++++3G@@@@@@66O@@@@E<$<J@@6<E//@@@@@O@@JE@/@6'EE@6<J//@J6'EE@@/'$'EEE$EE@@@@'E]'<<@@@@@E<<E<E</E66E'$<EE</E<'6JJ'/J@@<'$$6J@@E@@@@@@E'EE<J@'$<J@@/6@@</<J66J//<6<<''@@@@/$$/J@@6<<$'EJ/$6J@<J@'$6J@</@6$/EE<//<@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++:@@@@@@@@@@@@@@@@@@1++++&3t~~~~~t3%+yV~_K\\k_XXXXIXFFFFFFI??I4 4IMMMz88|5&+++++++3G@@@@@@6$/'''<<EOOE@@@EE@JE@@@@@O@@JE@EEEOJ@@@EE@JJ@@EJJ@@@@EJJJ@@@$EE@@@@/'E<@@@@@@J<<E<E</@@E@JJE@@@J@@JE<<JJJ@@@@JJJJ@@@E@@@@/'///'6EJJE@@@EE@@@EE<EE@EE@EEEJJ@@@@EJJJ@@@EEEOO@@EOE<<<<<JJE<<<EEEJJ@@OOJ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++3@@@@@@@@@@@@@@@@G;+++++%G|~~~~~{;tt"~q`ViiwwffYYRRMRKRRK>>>R=.ctt{c~@V~%%++++++3G@@@@@@<6@@@@@@@@@@@@@@@@@@$'J@@E$'E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'EE@@@@@/<@@@@@@@E<<E<E<6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$EE@@E/E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@66@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++++;@@@@@@@@@@@@@@@@1+++++%Z~~~~~~~QQ}~U^^^^^^{xttovqggoffffffr^
  173. V|ffqcc~ni!++++++3G@@@@@@@EEEEEE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<<@@@@@@@J</EE@@@@@@@@@@@@@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@6<@@@@@@EEEEEEE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<EE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++++@@@@@@@@@@@@@@@3*++++*+t~~~~~~~y~~fUl^^^^i{xx}{ttggffffffqxrD)`xlfrroo|~@!+++++1G@@@@@@EEEEEEEEE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EJE<@@@@@@@EEEEEE<<JE<@@@@JJJ@@@@EEEEE<<JJ<<<<<JJ@@@@@@@@@@@@@@@@@@@EE@@@@@@J@<E@@@@@@@JE@@@@@@@JJEEEEEE@@@@@@@JE@@@@@<<JE<@@@@@@@@@@@@@@@@@@@@@@@@@@@@JJ@@@@@@@@@@@@@@@EJ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++++++@GG@@@@@@@@GG5*+++++&G~~~~~~~~~iZfff^f^^^lxxxfottroooffffooo^HVxooxxrrrQC}!&++++3G@@@@@@JE<<<<<JE<OE<EE@@@@@@@@@O@@@@@O@@@EO<<EWOEOO<@@@@@EOOOOOJ@OEJWOE@@JJJJ<EWJEWJ<OO@EOE<<OEJJ<@@@<JJ@@@@@EO@@@OOEWE@<<OEOOO@<EO<<JJ<<EO@@@WJEWE<OOEWJJ<<JJEO<JJ<<JOEOO<<EJ@@@EJ<@@@@@@O@@@@JJE@@OWEEWE@@EJ@@@JJ@@JWEEOJ<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++++++;GGGGGGGGG@3++++++++i~~~~~~~~~oUf^UffU^lyyt^f|xxxxxxxttorqhlioootxvro{({Q!++++3G@@@@@@6O<<<J$'J/O''@@@@@@@@<<E@E66@E/EEE$'E@@@@E/$O'$/EE/$OE/O/$JJJ'/O<<<O$'E@@@E6<<J'EEEJ'$6J/J</EE6<EJ'6O//$EJ<O$$EO@6OE/6@@/EE@@@E6<EEE'6@J66@@/$EEE''EE6<J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++++++++15;@@@@;3+++++++++@|~~~~~~~~8UKKfl^^^^^^tyyyytttttttttyxtrmpllllcoxuuvd-{%++++3G@@@@@@W@@J@6<'W@@@@@@@E66J<J/6EJ$JJ'/'<E@@@J$/'''6'//'E6/6J//<$//O6''6J<<<WE@@@E'6O''/@J$///O'W<$EE/@O$$/$</'JJ/'EW@/$<W'6@E$JE@@@J/<EE</E666'EE6OJ@E/6$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++++*&&*+++11111++++++++++%d~~~~~~~~yfUU^U^^^U^iytttttxttttttttwkjmI>???Rcrxruz-nZ%+++1G@@@@@@/<E6J$W/'W@@@@@@@E66J<J/6EE$J'<J@@E@@@@@J$J@@@@$JJJ$E'EJJ$O@@EEEEE@<O@@@@@@@WE@6<J/<E'JJ<'@6EE6/O'W<$EE/E6/O@EO$@EE/O<'EE@W@@@$W/6@E$JJ@@@J/<J@/EW@@EEE<$J$$6@EE<E66E@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+++1;GG:+++++++++++++++++&Q~~~~~~~~~8.o^L^UffU^^^ttttttttttqqtnttaab??4?McoovuuuV-y****3G@@@@@@@ /E6'W@@@@@@@E66J<J/6EE'J$/////<@@@@J$J@@@E''66$E'@JJ6////@@//W<@@@@@@WE6$W/E66EEE$6E@E6/O'W<$EE/E/<E@@E6/6$J<'E@@O@@@/J/6@@$JJ@@@J/<O///@$<///6E/6</'J</$E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&++5GG@@G@+++++++++++++++&:|~~~~~~~~|
  174. UULccLL^UU^^ttttttttttttqqtfliLMMMcqx{ttvuuv |;&++3G@@@@@@@$6J$<<6'W@@@@@@@E66J<J/<EO'J'<E<<<J$J@@@@J/'E/EJJ$J'EWO@@@@@@@WJ@/@@/JJ@$<<JJ6/O'W@$JJ/E66J@EEE@J@'EE@OEEE'O/6EE'JJ@@@J/<E$@/E J$J<'W'$6W@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+1@@@@@@@;*++++++++++++&%t~~~~~~~~~n YADflLLL^U^fltttttttqqxtllll^HD?Kcoxxtqqqvvz)qG%++3G@@@@@@@/E]$@@6'W@@@@@@@E66J<J6'EWO66W]/EE@@@J$J@@@@@OOO<'J/JJW/JWOO$W]J6O$EE@@@@@WE'$6<OJO'/JJJ//O$W@$OO/EEEJ</@JWOEO@'JJ<W$6J<]/$EJOE@@@J/@/EE/J]]O'O$W$E/OO]]6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&+3G@@@@@@@*++++++++++++Z~~~~~~~~~~VH\=DU^ULDLUV`llqqlllllfql``nV2=XcotttqqolquuQVd%++3G@@@@@@@6$J'@@6'W@@@@@@<<66E<E6'JE$$$'J<@@@J$J@@@E6'<E/O'/W'$'<6J<<<W$/O'/6J/@J6/O$W$//<O/$W$$'O$JWE@W/'O@@@@J/@W</E<'@E6O/$E<6@$E@@@@@@@@@@@@@@@@@@@@@@@@@@@@G&+3G@@@@@@@*+++++++++++G~~~~~~~~~~~-`\ULULLVLD^^hkkkooqffffifkhu=,=rt{rrllllltrz^"n&++1G@@@@@@@@/6@@6'W@@@@<JW]JE]WW//$'E@@E''E@@@@@J$J@@@@@$6E@/J@$/EEJ/$<<6J<<<W$$W<<<E/'EE@J//E@<J''E<<<J/$<J/'JE$J<<<J@$<JE6'6$'E@@@@@J/66W6/EE66J<$@E<'6EE'/O//E@@@@@@@@@@@@@@@@@@@@@@@@@@@@G&+1@G@@@@G5*++++++++++5{~~~~~~~~~~| ^cUUkbbebeejpajpmmmmjpeejmmm\2L|ttqoowghuxusrt***3G;@@@@@@@/<<<6'W$@@@@@6//''6'<66E<@@@@@@<<@@@@@@@JJ@@@@@@<<<E@@'@E<<EE<<EE@@@<<<EO<<@@@@<WJEE'<<<E<<<E@@@@<<6/J/$EEWW6$<<<E<<<E@@<<<<EE6$@@@''EEEE<<E@@@@@@<@@@@@@@J/JJ6/E@@@<<E@@@@@@@@@@@@@@<<<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*++3@GGGG;+++++++++++!@y~~~~~~~~~~~| LKLcmkupsvuss{{rpppusuukzpb_^,Z~ooqgtkmmzxxxx
  175. y**++GG@@@@@@@@/@@@/$]@@@@J'// /E@@@@@@@@@@@@@@@@J$J@@@@@@@@@@@@6'@@@@@@@@@@@@@@@@@E//@@@@@@@W'J<E@<@@@@@@@@@@@@E/ /O$EE/ '6E@@@@@@@@@@@@@@<'6@@@EE@@@@@@@@@@@@@@@@@@@J6<EE</E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G5++++15;;3+++++++++++!Q|~~~~~~~~~~~~{
  176. LADRz{mvouoYkjepoqzpuxxvkrj_V2H|ofokppsxttttt
  177. {++++:E@@@@@@@@@@@@@@@<<<<<@@@@@@@@@@@@@@@6<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@6<@@@@@@<<<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@1+++++++++++++++++++1i~~~~~~~~~~~~~~{\ADAsTTbpb4SNaaaNF4[mpb[zubol2-~ksmuy{{rrttt{
  178. y+++++:E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@1+++++++++++++++++*+G|~~~~~~~~~~~~~~~{
  179. ccD\sX[jmb>aeoooaa4bskbeppm_V2Hzsu{{xxxxxxxxt
  180. {+****+:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@1++++++++++++++++&*1d~~~~~~~~~~~~~~~~~| fr^csPSS[bMbMYYYXT4XpbbjSbp\V2,Vrttqqqqqqtqlqq
  181. y++++++&+5555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555551**+++++++++++++&%%5dy~~~~~~~~~~~~~~~~~~| Uoo\pNN9B[xoII44_rMF[SNNNbmKHA-fff^^UUUUf^DD^
  182. y1111111++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++1111111111+&%%%%5d{~~~~~~~~~~~~~~~~~~~~~-VoUKjSN700ztYR>Rv}zB007BNmm_.=" o^frrrrocc^==`)d!!&+<Zn{~~~~~~~~~~~~~~~~~~~~~~~VCrDAxk[S97zr>RcMMxk009[[bvj_D=,"Ufoz||~~hU^^YdHi3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;@GGQit{~~~~~~~~~~~~~~~~~~~~~~~~~~t    rR\pSN97B4>MMMb###9B9upXU==-D^luhrcrrD^^r(i~|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fUkaB707_YYc>4oxfYS79BBNpp\UA,)^flukMRrxffot
  183. }~~|||||||||||||||||||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|||||||||||||||||||||||||||||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`"rsxe[99q}}}oc{{|}\79[ekks_UA,-fffzv>Kxr^fr8C~~Z%&&&&&&&&&&&&&&&&&&Q~~~i--H|)"CtC--t~~~~`)-t~~~~~t `C))`~~~~~~~~~~~`"C~~~~~~t-8t~~~~t8"8tV--V~~~~{C--`~~{C-)`~~~~~{8-V)-V~~~~---i~~~~~~~~~~~H
  184. )V8--~~~~H-"ni"-V|~~~8--`~~~~~~t)"i~~~~~t CC--`~~~`--8~~~~y3%&&&&&&&&&&&&&&&&&&&&&&&&&&!+y~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  185. fkpBBB0R{||xc||{lN009NassXRL,-qllxh^Uczlfx{~~i*++++++++++++++++++Z~~~"y    CH~~~Vt~~~~    ~~~~~~~~~~H"~~~~{i~~~VV
  186. ~~~~
  187. ~~i|~~~~
  188. ~~~t~~~~~~~~~~C{~~{))    t~~~
  189. ~~~~~ni~~~y
  190. ~~~|~~~y:&++++++++++++++++++++++++++!@|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~CqkaBB7NSMY|4cx4FaBBBNSemX^=,8ollvxffsvfon-~~~y3*+++++++++++++++++Z~~~C
  191. |    i
  192. `~~|
  193.  ~~~n"~~~~~~~~~|     
  194. `~~~ "|~~in ~~~t     ~~~y )|~~~|
  195. "~~~|8~~~~~~~~~~- ~~~~
  196. CC|~~~    "~~~~~|~~n""~~~-~~~~y:*++++++++++++++++++++++++++!Z~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ytp[N[[pjN4M4MMNj\bmSSSpmbfD,-lqqrxoouxl~~~~~~G%+++++++++++++++++Z~~~8    {
  197. `    V~~nH8~~~iy
  198.  ~~~~~~~~~t|)~~~ `t~~`i~~~y 8~~~t
  199. "|~~~||~~~|-~~~~~~~~~~- n~~~~ 88
  200. {~~~ ~~~~~
  201. Hn|~~n~ "~~~)~~~~y:*++++++++++++++++++++++++1%%t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~lsb[bjsXNkcr{{fjjKmmXIazmblL2ixqvvxxxr|VZ~~~~~n!+++++++++++++++++Z~~~8
  202. {
  203. `    `~~n8) ~~~i`  ~~~~~~~~~nn8~~~
  204. t t~~`i~~~y "~~~t
  205. "|~~~~
  206. V~~~|-~~~~~~~~~~-V~~~~ 88
  207. {~~~ ~~~~~
  208. C{
  209. |~~n` "~~~)~~~~y:*+++++++++++++++++++++++++@|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~opbebkkbSR}}}}cSmmkhjPSppetL=8t{txxxxv|}
  210. ~~~~~~~Q!++++++++++++++++Z~~~8
  211. {
  212. `    `~~n8) ~~~i`  ~~~~~~~~~nH~{{|~~~
  213.     H- C|~~`i~~~y "~~~t
  214. )|~~~~H~~~|-~~~~~~~~~~-V~~~~ 88
  215. {~~~"~~~~~
  216. C8"C~~~|)"~~~)~~~~y:*++++++++++++++++++++++++%1t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~uuummseajFR{~fPamjppaN?Xme}U2Hxxxxxxt|~
  217. }~~~~~~~|51++++++++++++++Z~~~8
  218. {
  219. `    `~~n8) ~~~i`  ~~~~~~~~~nC~~~~~~~
  220.     t~~`i~~~y "~~~t
  221.  ~~~~~~|H~~~|-~~~~~~~~~~-V~~~~ 88
  222. {~~~ ~~~~~    |~~~~t8"~~~)~~~~y:*+++++++++++++++++++++++%%i~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~px{xruuvzm4444_|uvxvbXXvze"A"Uc\\cco~ y~~~|tt{~~y1!++++++++++++++Z~~~8
  223. |
  224. `    `~~n8) ~~~ii  ~~~~~~~~~ni
  225. 8~~~
  226.     t~~`n~~~y "~~~t
  227. t~~|` ~~~|-~~~~~~~~~~-V~~~~ C8
  228. {~~~i~~~
  229. |~~n `     ~~~)~~~~y;*++++++++++++++++++++++&+d~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~suuxxxxxxxusTu|usssuvvx{ss."A DRKKK_| t~~~t3!!*d~~y@!%*+++++++++++d~~~8
  230. |
  231. i    V~~t
  232. C-~~~in  ~~~~~~~~~ty 8~~~
  233. V {~~`{ ~~~| -~~~t
  234. "~~|
  235. t~~~|-~~~~~~~~~~-V~~~~ HV
  236. {~~~|~~
  237. ``
  238. |~~n~ )~~~)~~~~~G&1++++++++++++++++++++%3t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~smjjjjppmmmjjpmmmmjmssspjexUA-LKKKkit~~~y+!+++i~~~d5&%&+111111%@~~~~8    n~~~88~~~y     ~~~~~~~~~~
  239. t~~~-    -~~~`~~~)V~~t    8~~~  8~~~|-~~~~~~~~~~-V|~~|     
  240. |~~~"|~~)-~~~y 
  241. V~~~)~~~~~d&&1111111111111111*%%*Q{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~zuuuuuuuzzuuurkkkf\hkbbb_Xx^K-V^MxH{~~~~Z++++++~~~~~iG+%!!!!!!3{~~~~- |~~~t~~~~~ ~~~~~~~~~~t    H~~~~~
  242. {~~~`t~~|8~~t    
  243. "~~~{~~~~|-~~~~~~~~~~8H|~~|
  244. 8~~~~
  245. |~~|
  246. |~~~~n
  247. "~~~~)~~~~~~d*!!!!!!!!!!!!!!!!&3Qt~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{H)`|xoooccccKcRRDUKxiAH|i~~~~~~Z+++++&~~~~~~~ydQQZQQd{~~~~~tH8V~"8~~-)|~~~~~~V""`~~~~~~~8"t     ~~~~~~~~~~~~C")t~~~~~~~V )i~~~~~{C)H|Vi~~~~{    ~~~~V-8|``~~~~~V""H~~~~~{-~~~~~~~~~~n-8`y88H~~~~`8)t` V~~~~~V-H{``|~~~~H  V~~~~~~~~C""`~~~~~)~~~~~~~tZZZZZZZZZZZZZZZZt|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~t    Ht|rccccR^YUKKK\rhAc"d~~~~~~~i%%+++!Q~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|- V~~~~~~~~~~~~~~~~~~~~~~~~{)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Z
  248. )Hfxxxvkxovcoxr_s|""~~~~~~~~~~Q!%%%1|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
  249. C~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ V~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~H ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~i "))-)" d^Fx~~~~~~~~~~~~~dGGZ|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|V) i{qr~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{niiiiiy~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~System\Manifest.ini╖System\Manifest.int╖LSystem\BoingBoing.u▐    System\BoingBoing.txtßJSystem\BoingBoing.int+qHelp\modcentral.bmp£µSú┼πƒéiajWáΘí